home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1810
/
1810.xpi
/
chrome
/
showcase.jar
/
content
/
settings
/
pref-tab.js
< prev
next >
Wrap
Text File
|
2010-01-17
|
1KB
|
22 lines
function tabPrefInit() {
tabCustomColorsChanged();
tabScrollTypeChanged();
}
function tabCustomColorsChanged() {
var tabCustomColorsCheckbox = document.getElementById("tabCustomColors");
document.getElementById("tabCustomTitleColorLabel").disabled = !tabCustomColorsCheckbox.checked;
document.getElementById("tabCustomTitleColor").disabled = !tabCustomColorsCheckbox.checked;
document.getElementById("tabCustomBackgroundColorLabel").disabled = !tabCustomColorsCheckbox.checked;
document.getElementById("tabCustomBackgroundColor").disabled = !tabCustomColorsCheckbox.checked;
document.getElementById("tabColorizeLabel").disabled = !tabCustomColorsCheckbox.checked;
}
function tabScrollTypeChanged() {
var tabScrollTypeComboBox = document.getElementById("tabScrollType");
document.getElementById("tabThumbnailPreferredMinimumSizeLabel").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
document.getElementById("tabThumbnailPreferredMinimumSizePixelsLabel").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
document.getElementById("tabThumbnailPreferredMinimumSize").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
document.getElementById("tabAlwaysShowScrollbar").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
}